ServerSide Validation through validation object

This commit is contained in:
2019-01-23 21:43:27 +01:00
parent ecadd21228
commit 3e501b29d0
7 changed files with 58 additions and 7 deletions

View File

@ -14,5 +14,8 @@ namespace Vidly.Models
public short SignUpFee { get; set; }
public byte DurationInMonth { get; set; }
public byte DiscountRate { get; set; }
public static readonly byte Unknown = 0;
public static readonly byte PayAsYouGo = 1;
}
}