1
0
mirror of synced 2025-02-16 02:32:42 +01:00

14 lines
310 B
C#
Raw Normal View History

namespace Domain.Models;
public class Event
{
public string Name { get; set; } = string.Empty;
public string Md5 { get; set; } = string.Empty;
public int Index { get; set; }
public string NotBefore { get; set; } = string.Empty;
public string NotAfter { get; set; } = string.Empty;
}