LANCommander/LANCommander.SDK/Models/SavePath.cs

15 lines
324 B
C#
Raw Permalink Normal View History

2023-03-29 02:30:29 +00:00
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; }
}
}