1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Documents;
- using System.Windows.Ink;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- using System.Collections.Generic;
- namespace VocabManager.Model
- {
- public class Deck
- {
-
- public Deck()
- {
- }
- public int Id
- {
- get;
- set;
- }
- public DateTime CreationTime
- {
- get;
- set;
- }
-
- public string Name
- {
- get;
- set;
- }
- public string Description
- {
- get;
- set;
- }
-
- internal static Deck CreateNew()
- {
- return new Deck() { Id=-1,Name= string.Empty,Description = string.Empty};
- }
- }
- }
|