9 lines
203 B
C#
9 lines
203 B
C#
namespace CleanArchitecture.Application.Features.Videos.Queries.DTOs
|
|
{
|
|
public class VideosVm
|
|
{
|
|
public string? Nombre { get; set; }
|
|
public Guid StreamerId { get; set; }
|
|
}
|
|
}
|