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
+39
View File
@@ -0,0 +1,39 @@
using System;
using Newtonsoft.Json;
using xModels.Base;
namespace xIdentityModels.Dtos {
public class XProfileImageDto : XBaseDto {
public int Id { get; set; }
[JsonProperty (
"name",
Required = Required.Default,
NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
[JsonProperty (
"thumb",
Required = Required.Default,
NullValueHandling = NullValueHandling.Ignore)]
public string Thumb { get; set; }
[JsonProperty (
"path",
Required = Required.Default,
NullValueHandling = NullValueHandling.Ignore)]
public string Path { get; set; }
[JsonProperty (
"thumbPath",
Required = Required.Default,
NullValueHandling = NullValueHandling.Ignore)]
public string ThumbPath { get; set; }
[JsonProperty (
"creationDate",
Required = Required.Default,
NullValueHandling = NullValueHandling.Ignore)]
public DateTime CreationDate { get; set; }
}
}