aurelia-ui-toolkits / carmel-api

bridge catalog application editor
MIT License
0 stars 1 forks source link

Data structures #2

Open adriatic opened 7 years ago

adriatic commented 7 years ago

Component

Any element from this collection

image

It is defined as

namespace Catalog.Models
{
    public class Component
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public DateTime DateCreated { get; set; }
        public string  UserName { get; set; }
        public ICollection<Sample> Samples { get; set; }
    }
}

Sample

image