7 lines
152 B
C#
7 lines
152 B
C#
|
|
namespace Easy.Admin.Application.Blog.Dtos;
|
|||
|
|
|
|||
|
|
public class PicturesPageOutput
|
|||
|
|
{
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
public string Url { get; set; }
|
|||
|
|
}
|