15 lines
324 B
C#
15 lines
324 B
C#
|
using LANCommander.SDK.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace LANCommander.SDK.Models
|
|||
|
{
|
|||
|
public class SavePath : BaseModel
|
|||
|
{
|
|||
|
public SavePathType Type { get; set; }
|
|||
|
public string Path { get; set; }
|
|||
|
public virtual Game Game { get; set; }
|
|||
|
}
|
|||
|
}
|