Initial Commit ...
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user