6 lines
150 B
C#
6 lines
150 B
C#
|
namespace SharedProject.Models.Responses;
|
|||
|
|
|||
|
public class DanBestDataResponse
|
|||
|
{
|
|||
|
public List<DanBestData> DanBestDataList { get; set; } = new();
|
|||
|
}
|