Show RegisterObj.cs syntax highlighted
using System;
using System.Drawing;
using Whiteboard.MaseWS;
namespace Whiteboard
{
/// <summary>
/// Summary description for RegisterObj.
/// </summary>
public class RegisterObj
{
public static int UpdateStoryContent = 1;
public static int UpdateStoryLocation = 2;
public static int CreateStoryContent = 3;
public static int CreateIterationContent = 4;
public static int UpdateRollback = 5;
private TabletVO tabVO;
private int contentChangType;
public RegisterObj(TabletVO tabVO, int contentChangType)
{
this.tabVO = tabVO;
this.contentChangType = contentChangType;
}
public RegisterObj()
{
}
public int getContentChangeType()
{
return this.contentChangType;
}
public void setContentChangeType(int contentChangeType)
{
this.contentChangType = contentChangeType;
}
public TabletVO getTabVO()
{
return this.tabVO;
}
}
}
See more files for this project here