using Coscine.ApiCommons.ReturnObjects; using System; namespace Coscine.Api.Project.ReturnObjects { [Serializable] public class ResourceTypeObject : IReturnObject { public Guid Id { get; set; } public string DisplayName { get; set; } public bool Enabled { get; set; } public ResourceTypeObject(Guid id, string displayName, bool enabled) { Id = id; DisplayName = displayName; Enabled = enabled; } } }