|
using System;
|
|
|
|
namespace Tesses.CMS.Client
|
|
{
|
|
public class Movie
|
|
{
|
|
public string ProperName {get;set;}
|
|
|
|
public string Name {get;set;}
|
|
|
|
public DateTime CreationTime {get;set;}
|
|
|
|
public DateTime LastUpdated {get;set;}
|
|
|
|
public string Description {get;set;}
|
|
}
|
|
} |