12 lines
204 B
C#
12 lines
204 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace iPackage.Core.Web.Models.Settings
|
|||
|
|
{
|
|||
|
|
public class ServerSettings
|
|||
|
|
{
|
|||
|
|
public bool Seeded { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|