Moved Models to Shared Project

This commit is contained in:
t.ruspekhofer 2022-04-02 19:23:53 +02:00
parent bae69648d0
commit 7533d5a704
19 changed files with 27 additions and 1 deletions

View file

@ -1,23 +0,0 @@
using System.ComponentModel.DataAnnotations;
namespace Lieb.Models.GuildWars2.Raid
{
public class RaidTemplate : RaidBase
{
public int RaidTemplateId { get; private set; }
[Required]
public DateTime StartTime { get; set; } = DateTime.Now;
[Required]
public DateTime EndTime { get; set; }
public DateTime FreeForAllTime { get; set; }
public string TimeZone { get; set; } = String.Empty;
public int Interval { get; set; }
public int CreateDaysBefore { get; set; }
}
}