web-app-template/backend/app/app.Model/DTOs/ApiVersionDTO.cs

12 lines
213 B
C#
Raw Normal View History

2022-02-20 13:43:25 +01:00
using System;
namespace app.Model.DTOs
{
public class ApiVersionDTO
{
public string Major { get; set; }
public string Minor { get; set; }
public string Micro { get; set; }
}
}