view SilverlightExampleApp/SilverlightExampleApp.Interfaces/Models/IClient.cs @ 112:b9d5f934cb21

Initial upload
author adminsh@apollo
date Sat, 19 May 2012 16:09:07 +0100
parents 502f5f365649
children
line wrap: on
line source

using System;

namespace SilverlightExampleApp.Interfaces.Models
{
    public interface IClient
    {
        int Id { get; set; }
        ITitle Title { get; set; }
        string FirstName { get; set; }
        string FamilyName { get; set; }
        DateTime DateOfBirth { get; set; }
        ICountry Residence { get; set; }
        bool ActiveFlag { get; set; }
    }
}