14 lines
273 B
C#
14 lines
273 B
C#
namespace WorkFlow.Application.Dto;
|
|
|
|
public class TfFileDto
|
|
{
|
|
public UriBuilder? Url { get; set; }
|
|
|
|
public string? Headline { get; set; }
|
|
|
|
public string? Subline { get; set; }
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
public string? Icon { get; set; }
|
|
} |