Initial Commit ...

This commit is contained in:
2024-01-25 04:42:47 +03:30
commit 844b4c47ad
50 changed files with 2615 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
using xCommons.Extensions;
using xIdentityModels.Navigations;
using xModels.Base;
namespace xIdentityModels.Models {
public class XBannedDevice : XBaseIntIDEntity {
public DateTime BannedOn { get; set; }
public string DeviceStr { get; set; }
[NotMapped]
public XDevice Device {
get {
return DeviceStr.FromJSON<XDevice> ();
}
set {
DeviceStr = value.ToJSON ();
}
}
}
}