[#17] Models: Remove internal visibility
All checks were successful
DCO / DCO (pull_request) Successful in 7m36s
All checks were successful
DCO / DCO (pull_request) Successful in 7m36s
Signed-off-by: Pavel Gross <p.gross@yando.com>
This commit is contained in:
parent
9207683acf
commit
ffb6fa869b
1 changed files with 3 additions and 9 deletions
|
@ -1,15 +1,9 @@
|
|||
namespace FrostFS.SDK.ModelsV2;
|
||||
|
||||
public class Version
|
||||
public class Version(int major, int minor)
|
||||
{
|
||||
public int Major { get; set; }
|
||||
public int Minor { get; set; }
|
||||
|
||||
public Version(int major, int minor)
|
||||
{
|
||||
Major = major;
|
||||
Minor = minor;
|
||||
}
|
||||
public int Major { get; set; } = major;
|
||||
public int Minor { get; set; } = minor;
|
||||
|
||||
public bool IsSupported(Version version)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue