add client note command and feature
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SharedLibraryCore.Dtos.Meta.Responses;
|
||||
|
||||
public class ClientNoteMetaResponse
|
||||
{
|
||||
public string Note { get; set; }
|
||||
public int OriginEntityId { get; set; }
|
||||
[JsonIgnore]
|
||||
public string OriginEntityName { get; set; }
|
||||
public DateTime ModifiedDate { get; set; }
|
||||
}
|
@ -33,5 +33,6 @@ namespace SharedLibraryCore.Dtos
|
||||
public string ConnectProtocolUrl { get;set; }
|
||||
public string CurrentServerName { get; set; }
|
||||
public IGeoLocationResult GeoLocationInfo { get; set; }
|
||||
public ClientNoteMetaResponse NoteMeta { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user