9 lines
228 B
C#
9 lines
228 B
C#
|
|
namespace SIGCM.Domain.Entities;
|
||
|
|
|
||
|
|
public class PublicationBlackout
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public int CompanyId { get; set; }
|
||
|
|
public DateTime BlackoutDate { get; set; }
|
||
|
|
public required string Reason { get; set; }
|
||
|
|
}
|