using System.Collections.Generic; using zero.Core.Entities; namespace zero.TestData { //[Space("team", "@dbg.spaces.team.name", "fth-users", "@dbg.spaces.team.description")] public class TeamMember : SpaceContent { public string Position { get; set; } public Media Image { get; set; } public string Email { get; set; } public string VideoUri { get; set; } public List Addresses { get; set; } = new List(); } public class TeamMemberAddress { public string City { get; set; } public string Street { get; set; } public string No { get; set; } public string CountryId { get; set; } } }