Add User story example on state pattern

This commit is contained in:
Petrutiu Mihai
2016-06-30 17:52:11 +03:00
parent f9631ea99a
commit 0a6d290c3e
5 changed files with 516 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace StatePattern.ScrumExample
{
public class UserStoryMotivational
{
public String Name { get; set; }
public UserStoryState State { get; set; }
}
}