Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using MetaCourse.Api.Entities;
|
||||
|
||||
namespace MetaCourse.Api.DTOs.Resources;
|
||||
|
||||
public class UpdateResourceDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public ResourceType Type { get; set; }
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public string Content { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user