summaryrefslogtreecommitdiffstats
path: root/src/artist.rs
blob: 476dad9a94371c42099aff1876433c4932ef5b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::error::Error;
use crate::Result;

#[derive(sqlx::FromRow)]
pub struct Artist {
    id: Option<i32>,
    pub handle: String,
    pub name: Option<String>,
    pub bio: Option<String>,
    pub site: Option<String>,
}

impl Artist {
    pub fn id(&self) -> Option<i32> {
        self.id
    }
}