mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 04:20:58 +00:00
12 lines
205 B
C#
12 lines
205 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
class Friendship
|
|
{
|
|
private Person friend1, friend2;
|
|
private int importance; //on a scale from 1 to 100
|
|
}
|
|
}
|