Files
parr_api/PARR.API/Contracts/V1/Responses/HistoryInitiatorResponse.cs
2024-10-08 13:53:57 +10:00

13 lines
357 B
C#

namespace PARR.API.Contracts.V1.Responses
{
public class HistoryInitiatorResponse
{
public string? Ip { get; set; }
public string? Comment { get; set; }
public int? ParrComponentId { get; set; }
public ParrComponentResponse? ParrComponent { get; set; }
public UserBaseResponse? User { get; set; }
}
}