11 lines
314 B
C#
11 lines
314 B
C#
namespace MetaCourse.Api.DTOs.Resources;
|
|
|
|
public class GetResourceDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Type { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Content { get; set; } = string.Empty;
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|