1
0
mirror of synced 2024-12-14 23:32:55 +01:00
GC-local-server-rewrite/Domain/Models/Event.cs

14 lines
310 B
C#

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;
}