33 lines
722 B
C#
33 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Big.Lito.Data.DataModel
|
|
{
|
|
public class SystemSettingsModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets project id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public string ProjectName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public string HomeDir { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets progress max value
|
|
/// </summary>
|
|
public string BlenderDir { get; set; }
|
|
|
|
}
|
|
}
|