18 lines
474 B
C#
18 lines
474 B
C#
namespace DiunaBI.Application.DTOModels;
|
|
|
|
public class DataInboxDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Source { get; set; } = string.Empty;
|
|
public string Data { get; set; } = string.Empty;
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
|
|
public class DataInboxFilterRequest
|
|
{
|
|
public string? Search { get; set; }
|
|
public int Page { get; set; } = 1;
|
|
public int PageSize { get; set; } = 50;
|
|
}
|