Fix vari
This commit is contained in:
24
salesbook.Shared/Core/Dto/ActivityFileDto.cs
Normal file
24
salesbook.Shared/Core/Dto/ActivityFileDto.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace salesbook.Shared.Core.Dto;
|
||||
|
||||
public class ActivityFileDto
|
||||
{
|
||||
[JsonPropertyName("id")]
|
||||
public string Id { get; set; }
|
||||
|
||||
[JsonPropertyName("fileName")]
|
||||
public string FileName { get; set; }
|
||||
|
||||
[JsonPropertyName("originalSize")]
|
||||
public int OriginalSize { get; set; }
|
||||
|
||||
[JsonPropertyName("lastUpd")]
|
||||
public DateTime LastUpd { get; set; }
|
||||
|
||||
[JsonPropertyName("descrizione")]
|
||||
public string Descrizione { get; set; }
|
||||
|
||||
[JsonPropertyName("modello")]
|
||||
public string Modello { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user