mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 20:40:57 +00:00
19 lines
337 B
C#
19 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
public class Friendship
|
|
{
|
|
public Person friend1, friend2;
|
|
private int importance; //on a scale from 1 to 100
|
|
|
|
public Friendship(Person p1, Person p2, int scale)
|
|
{
|
|
friend1 = p1;
|
|
friend2 = p2;
|
|
importance = scale;
|
|
}
|
|
}
|
|
}
|