Files
CleanArchitecture/CleanArchitecture/CleanArchitecture.Application/Features/Videos/Queries/DTOs/VideosVm.cs
Alejandro Sarmiento b2fd3c642c V1
2024-03-10 11:12:51 +01:00

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; }
}
}