20 lines
484 B
C#
20 lines
484 B
C#
public class LokOpenHours
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public DateTime Version { get; set; }
|
|
|
|
public string Paragraph1 { get; set; } = string.Empty;
|
|
|
|
public string Paragraph2 { get; set; } = string.Empty;
|
|
|
|
public string Paragraph3 { get; set; } = string.Empty;
|
|
|
|
public string Paragraph4 { get; set; } = string.Empty;
|
|
|
|
public string KitchenNotice { get; set; } = string.Empty;
|
|
} |