mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 04:20:58 +00:00
Added Friendship Created a namespace for models Signed-off-by: RosimInc <rosim_inc@hotmail.com>
14 lines
245 B
C#
14 lines
245 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
class Friendship
|
|
{
|
|
private Person friend1, friend2;
|
|
private int importance; //on a scale from 1 to 100
|
|
}
|
|
}
|