using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static Hydro.Core.ObjectEnum; namespace Hydro.Core.Model { public abstract class BaseModel { public BaseModel() { } public BaseModel(BaseModel model) { this.ID = model.ID; this.Name = model.Name; this.Status = model.Status; } public string ID { get; set; } public string Name { get; set; } public StatusType Status { get; set; } = StatusType.OPEN; } }