Project-Unite/Project-Unite/Models/Group.cs
2017-05-07 09:19:55 -04:00

28 lines
No EOL
630 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Project_Unite.Models
{
public class Group
{
public string Id { get; set; }
public string Name { get; set; }
public int Publicity { get; set; }
public string BannerColorHex { get; set; }
public string Description { get; set; }
public string ShortName { get; set; }
public double RawReputation { get; set; }
public int Reputation
{
get
{
return ((int)Math.Round(RawReputation));
}
}
}
}