12 lines
213 B
C#
12 lines
213 B
C#
|
using System;
|
||
|
|
||
|
namespace app.Model.DTOs
|
||
|
{
|
||
|
public class ApiVersionDTO
|
||
|
{
|
||
|
public string Major { get; set; }
|
||
|
public string Minor { get; set; }
|
||
|
public string Micro { get; set; }
|
||
|
}
|
||
|
}
|