9 lines
166 B
C#
9 lines
166 B
C#
using Common.Dtos.Common;
|
|
|
|
namespace Common.Dtos.Season;
|
|
|
|
public class CreateSeasonResponse : BaseResponse
|
|
{
|
|
public string? CreateSeasonResult { get; set; }
|
|
}
|